Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bin/kafka-console-consumer.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off
SetLocal
set KAFKA_OPTS=-Xmx512M -server -Dcom.sun.management.jmxremote -Dlog4j.configuration=file:"%CD%\kafka-console-consumer-log4j.properties"
kafka-run-class.bat kafka.consumer.ConsoleConsumer %*
EndLocal
2 changes: 2 additions & 0 deletions bin/kafka-console-producer.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
kafka-run-class.bat kafka.producer.ConsoleProducer %*
77 changes: 77 additions & 0 deletions bin/kafka-run-class.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
@echo off
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't there a windows folder already with scripts like these?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nvm, looks like they're all removed

rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.

setlocal enabledelayedexpansion

IF [%1] EQU [] (
echo "USAGE: $0 classname [opts]"
goto :eof
)

set BASE_DIR=%CD%\..
set CLASSPATH=
echo %BASE_DIR%

for %%i in (%BASE_DIR%\project\boot\scala-2.8.0\lib\*.jar) do (
call :concat %%i
)

for %%i in (%BASE_DIR%\core\target\scala_2.8.0\*.jar) do (
call :concat %%i
)

for %%i in (%BASE_DIR%\core\lib\*.jar) do (
call :concat %%i
)

for %%i in (%BASE_DIR%\perf\target\scala_2.8.0/kafka*.jar) do (
call :concat %%i
)

for %%i in (%BASE_DIR%\core\lib_managed\scala_2.8.0\compile\*.jar) do (
call :concat %%i
)

IF ["%KAFKA_JMX_OPTS%"] EQU [""] (
set KAFKA_JMX_OPTS=-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
)

IF ["%KAFKA_OPTS%"] EQU [""] (
set KAFKA_OPTS=-Xmx512M -server -Dlog4j.configuration=file:"%BASE_DIR%\config\log4j.properties"
)

IF ["%JMX_PORT%"] NEQ [""] (
set KAFKA_JMX_OPTS=%KAFKA_JMX_OPTS% -Dcom.sun.management.jmxremote.port=%JMX_PORT%
)

IF ["%JAVA_HOME%"] EQU [""] (
set JAVA=java
) ELSE (
set JAVA="%JAVA_HOME%/bin/java"
)

set SEARCHTEXT=\bin\..
set REPLACETEXT=
set CLASSPATH=!CLASSPATH:%SEARCHTEXT%=%REPLACETEXT%!
set COMMAND= %JAVA% %KAFKA_OPTS% %KAFKA_JMX_OPTS% -cp %CLASSPATH% %*
set SEARCHTEXT=-cp ;
set REPLACETEXT=-cp
set COMMAND=!COMMAND:%SEARCHTEXT%=%REPLACETEXT%!

%COMMAND%

:concat
set CLASSPATH=%CLASSPATH%;"%1"
27 changes: 27 additions & 0 deletions bin/kafka-server-start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.

IF [%1] EQU [] (
echo "USAGE: $0 server.properties [consumer.properties producer.properties]"
goto :eof
)

IF [%JMX_PORT%] EQU [] (
echo Set JMX_PORT to default value : 9999
set JMX_PORT=9999
)

kafka-run-class.bat kafka.Kafka %*
22 changes: 22 additions & 0 deletions bin/zookeeper-server-start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.

IF [%1] EQU [] (
echo "USAGE: $0 zookeeper.properties"
goto :eof
)

kafka-run-class.bat org.apache.zookeeper.server.quorum.QuorumPeerMain %*
5 changes: 5 additions & 0 deletions project/build/KafkaProject.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@
import sbt._
import scala.xml.{Node, Elem, NodeSeq}
import scala.xml.transform.{RewriteRule, RuleTransformer}
import java.io.File

class KafkaProject(info: ProjectInfo) extends ParentProject(info) with IdeaProject {

override def managedStyle = ManagedStyle.Maven
lazy val publishTo = Resolver.file("file", new File( "D:\\Outils\\Maven\\repo" ))

lazy val core = project("core", "core-kafka", new CoreKafkaProject(_))
lazy val examples = project("examples", "java-examples", new KafkaExamplesProject(_), core)
lazy val contrib = project("contrib", "contrib", new ContribProject(_))
Expand Down
1 change: 1 addition & 0 deletions sbt.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
java -Xmx1024M -XX:MaxPermSize=512m -jar lib\sbt-launch.jar "%1"