aboutsummaryrefslogtreecommitdiff
path: root/contrib/native/client/src/include/drill/common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/native/client/src/include/drill/common.hpp')
-rw-r--r--contrib/native/client/src/include/drill/common.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/native/client/src/include/drill/common.hpp b/contrib/native/client/src/include/drill/common.hpp
index bb8e2b4a3..a617dc71f 100644
--- a/contrib/native/client/src/include/drill/common.hpp
+++ b/contrib/native/client/src/include/drill/common.hpp
@@ -45,6 +45,11 @@
#define MEM_CHUNK_SIZE 64*1024; // 64K
#define MAX_MEM_ALLOC_SIZE 256*1024*1024; // 256 MB
+#define MAX_BATCH_SIZE 65536; // see RecordBatch.java
+#define ENABLE_CONNECTION_POOL_ENV "DRILL_ENABLE_CONN_POOL"
+#define DEFAULT_MAX_CONCURRENT_CONNECTIONS 10
+#define MAX_CONCURRENT_CONNECTIONS_ENV "DRILL_MAX_CONN"
+
#ifdef _DEBUG
#define EXTRA_DEBUGGING
#define CODER_DEBUGGING
@@ -110,7 +115,9 @@ typedef enum{
CONN_HOSTNAME_RESOLUTION_ERROR=6,
CONN_AUTH_FAILED=7,
CONN_BAD_RPC_VER=8,
- CONN_DEAD=9
+ CONN_DEAD=9,
+ CONN_NOTCONNECTED=10,
+ CONN_ALREADYCONNECTED=11
} connectionStatus_t;
typedef enum{