Reputation: 1356
I downloaded DataStax Distribution of Apache Cassandra (DDAC) from this page.
nodetool.bat runs cassandra.in.bat
, cassandra.in.bat
in one of the statements requires "%CASSANDRA_HOME%\build
folder. However, this build folder does not exist in the downloaded DDAC archive:
I also tried building with Ant tool, but Ant requires build.xml
, which also doesn't exist.
How to build DDAC?
Upvotes: 0
Views: 58
Reputation: 87224
There is no source code for DDAC available, so you can't build it. DDAC is binary compatible with Cassandra, but includes fixes that aren't available in the OSS version.
Also, Windows doesn't belong to supported platforms, even for development. If you want to run DDAC on Windows, either use Docker image, or virtual machine with Linux inside.
Upvotes: 2