Skip to content

Commit 5707ef9

Browse files
authored
chore: disable lumina and lucene by default (#190)
1 parent 3cfe7a4 commit 5707ef9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ option(PAIMON_ENABLE_AVRO "Whether to enable avro file format" ON)
5252
option(PAIMON_ENABLE_ORC "Whether to enable orc file format" ON)
5353
option(PAIMON_ENABLE_LANCE "Whether to enable lance file format" OFF)
5454
option(PAIMON_ENABLE_JINDO "Whether to enable jindo file system" OFF)
55-
option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" ON)
56-
option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" ON)
55+
option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" OFF)
56+
option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" OFF)
5757

5858
if(PAIMON_ENABLE_ORC)
5959
add_definitions(-DPAIMON_ENABLE_ORC)

ci/scripts/build_paimon.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ CMAKE_ARGS=(
3131
"-DPAIMON_BUILD_TESTS=ON"
3232
"-DPAIMON_ENABLE_LANCE=ON"
3333
"-DPAIMON_ENABLE_JINDO=ON"
34+
"-DPAIMON_ENABLE_LUMINA=ON"
35+
"-DPAIMON_ENABLE_LUCENE=ON"
3436
)
3537

3638
if [[ "${enable_sanitizer}" == "true" ]]; then

0 commit comments

Comments
 (0)