You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG(INFO) << "Successfully retrieved and aliased HashTable for reuse. ID: " << hashTableId;
415
-
} catch (const std::exception& e) {
416
-
LOG(WARNING)
417
-
<< "Error retrieving HashTable from ObjectStore: " << e.what()
418
-
<< ". Falling back to building new table. To ensure correct results, please verify that spark.gluten.velox.buildHashTableOncePerExecutor.enabled is set to false.";
419
-
opaqueSharedHashTable = nullptr;
410
+
if (hashTableBuildOncePerExecutorEnabled) {
411
+
std::cout << "the hashTableBuildOncePerExecutorEnabled is set" << "\n";
412
+
try {
413
+
auto hashTableBuilder = ObjectStore::retrieve<gluten::HashTableBuilder>(getJoin(hashTableId));
0 commit comments