├── README.md ├── blockchain-explorer ├── docker-compose.yaml └── examples │ └── net1 │ ├── .gitignore │ ├── README.md │ ├── config.json │ └── connection-profile │ └── first-network.json ├── fabric-kafka ├── .env ├── chaincode │ ├── abac │ │ └── go │ │ │ ├── abac.go │ │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── proto │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── deprecated.go │ │ │ │ │ ├── discard.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── table_marshal.go │ │ │ │ │ ├── table_merge.go │ │ │ │ │ ├── table_unmarshal.go │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ ├── hyperledger │ │ │ │ └── fabric │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── core │ │ │ │ │ └── chaincode │ │ │ │ │ │ └── shim │ │ │ │ │ │ └── ext │ │ │ │ │ │ ├── attrmgr │ │ │ │ │ │ └── attrmgr.go │ │ │ │ │ │ └── cid │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cid.go │ │ │ │ │ │ └── interfaces.go │ │ │ │ │ └── protos │ │ │ │ │ └── msp │ │ │ │ │ ├── identities.pb.go │ │ │ │ │ ├── identities.proto │ │ │ │ │ ├── msp_config.go │ │ │ │ │ ├── msp_config.pb.go │ │ │ │ │ ├── msp_config.proto │ │ │ │ │ ├── msp_principal.go │ │ │ │ │ ├── msp_principal.pb.go │ │ │ │ │ └── msp_principal.proto │ │ │ └── pkg │ │ │ │ └── errors │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ ├── errors.go │ │ │ │ └── stack.go │ │ │ └── vendor.json │ ├── chaincode_example02 │ │ ├── go │ │ │ └── chaincode_example02.go │ │ ├── java │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── hyperledger │ │ │ │ └── fabric │ │ │ │ └── example │ │ │ │ └── SimpleChaincode.java │ │ └── node │ │ │ ├── chaincode_example02.js │ │ │ └── package.json │ ├── fabcar │ │ ├── go │ │ │ └── fabcar.go │ │ ├── javascript-low-level │ │ │ ├── fabcar.js │ │ │ └── package.json │ │ ├── javascript │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.js │ │ │ ├── .gitignore │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── fabcar.js │ │ │ └── package.json │ │ └── typescript │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── car.ts │ │ │ ├── fabcar.ts │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── marbles02 │ │ ├── go │ │ │ ├── META-INF │ │ │ │ └── statedb │ │ │ │ │ └── couchdb │ │ │ │ │ └── indexes │ │ │ │ │ └── indexOwner.json │ │ │ └── marbles_chaincode.go │ │ └── node │ │ │ ├── META-INF │ │ │ └── statedb │ │ │ │ └── couchdb │ │ │ │ └── indexes │ │ │ │ └── indexOwner.json │ │ │ ├── marbles_chaincode.js │ │ │ └── package.json │ ├── marbles02_private │ │ ├── collections_config.json │ │ └── go │ │ │ ├── META-INF │ │ │ └── statedb │ │ │ │ └── couchdb │ │ │ │ └── collections │ │ │ │ └── collectionMarbles │ │ │ │ └── indexes │ │ │ │ └── indexOwner.json │ │ │ └── marbles_chaincode_private.go │ └── sacc │ │ └── sacc.go ├── configtx.yaml ├── crypto-config.yaml ├── docker-compose-orderer1.yaml ├── docker-compose-orderer2.yaml ├── docker-compose-orderer3.yaml ├── docker-compose-peer0-org1.yaml ├── docker-compose-peer0-org2.yaml ├── docker-compose-peer1-org1.yaml └── docker-compose-peer1-org2.yaml ├── images ├── Hyp-explorer-Transactions.png ├── Hyp-explorer-blockhash.png ├── Hyp-explorer-dash.png ├── KAFKA-MASTER.png ├── KAFKA-ZOOKEEPER.png ├── Kafka-tool-001.png ├── Kafka-tool-Data.png ├── Kafka-tool-Replicas.png ├── Kafkat-partitions.png ├── Peer-cc-query.PNG ├── kafka-kill-after.png ├── kafka-kill-before.png ├── kafka-manager-brokers.png ├── kafka-manager-topics.png ├── kafka-tool.PNG ├── kafkat-brokers.png ├── kafkat-topics.png ├── orderer-create-channel-topic.png ├── orderer1-kafka.png ├── orderer1-start1.png ├── peer0-org1-cc-install.PNG ├── peer0-org1-cc-instantiated.png ├── peer0-org1-channel-update.png ├── peer0-org1-create-channel.png ├── peer1-org1-joined.png ├── peer1-org1-logs-joined.png ├── peer1-org1-query.png ├── peer1-org2-cc-instantiated.png └── peer1-org2-joined.png ├── kafka-steps.sh ├── kafka ├── LICENSE ├── NOTICE ├── bin │ ├── connect-distributed.sh │ ├── connect-standalone.sh │ ├── kafka-acls.sh │ ├── kafka-broker-api-versions.sh │ ├── kafka-configs.sh │ ├── kafka-console-consumer.sh │ ├── kafka-console-producer.sh │ ├── kafka-consumer-groups.sh │ ├── kafka-consumer-perf-test.sh │ ├── kafka-delegation-tokens.sh │ ├── kafka-delete-records.sh │ ├── kafka-dump-log.sh │ ├── kafka-log-dirs.sh │ ├── kafka-mirror-maker.sh │ ├── kafka-preferred-replica-election.sh │ ├── kafka-producer-perf-test.sh │ ├── kafka-reassign-partitions.sh │ ├── kafka-replica-verification.sh │ ├── kafka-run-class.sh │ ├── kafka-server-start.sh │ ├── kafka-server-stop.sh │ ├── kafka-streams-application-reset.sh │ ├── kafka-topics.sh │ ├── kafka-verifiable-consumer.sh │ ├── kafka-verifiable-producer.sh │ ├── trogdor.sh │ ├── windows │ │ ├── connect-distributed.bat │ │ ├── connect-standalone.bat │ │ ├── kafka-acls.bat │ │ ├── kafka-broker-api-versions.bat │ │ ├── kafka-configs.bat │ │ ├── kafka-console-consumer.bat │ │ ├── kafka-console-producer.bat │ │ ├── kafka-consumer-groups.bat │ │ ├── kafka-consumer-perf-test.bat │ │ ├── kafka-delegation-tokens.bat │ │ ├── kafka-dump-log.bat │ │ ├── kafka-mirror-maker.bat │ │ ├── kafka-preferred-replica-election.bat │ │ ├── kafka-producer-perf-test.bat │ │ ├── kafka-reassign-partitions.bat │ │ ├── kafka-replica-verification.bat │ │ ├── kafka-run-class.bat │ │ ├── kafka-server-start.bat │ │ ├── kafka-server-stop.bat │ │ ├── kafka-topics.bat │ │ ├── zookeeper-server-start.bat │ │ ├── zookeeper-server-stop.bat │ │ └── zookeeper-shell.bat │ ├── zookeeper-security-migration.sh │ ├── zookeeper-server-start.sh │ ├── zookeeper-server-stop.sh │ └── zookeeper-shell.sh ├── config │ ├── connect-console-sink.properties │ ├── connect-console-source.properties │ ├── connect-distributed.properties │ ├── connect-file-sink.properties │ ├── connect-file-source.properties │ ├── connect-log4j.properties │ ├── connect-standalone.properties │ ├── consumer.properties │ ├── log4j.properties │ ├── producer.properties │ ├── server.properties │ ├── tools-log4j.properties │ ├── trogdor.conf │ └── zookeeper.properties ├── libs │ ├── activation-1.1.1.jar │ ├── aopalliance-repackaged-2.5.0-b42.jar │ ├── argparse4j-0.7.0.jar │ ├── audience-annotations-0.5.0.jar │ ├── commons-lang3-3.8.1.jar │ ├── connect-api-2.2.1.jar │ ├── connect-basic-auth-extension-2.2.1.jar │ ├── connect-file-2.2.1.jar │ ├── connect-json-2.2.1.jar │ ├── connect-runtime-2.2.1.jar │ ├── connect-transforms-2.2.1.jar │ ├── guava-20.0.jar │ ├── hk2-api-2.5.0-b42.jar │ ├── hk2-locator-2.5.0-b42.jar │ ├── hk2-utils-2.5.0-b42.jar │ ├── jackson-annotations-2.9.8.jar │ ├── jackson-core-2.9.8.jar │ ├── jackson-databind-2.9.8.jar │ ├── jackson-datatype-jdk8-2.9.8.jar │ ├── jackson-jaxrs-base-2.9.8.jar │ ├── jackson-jaxrs-json-provider-2.9.8.jar │ ├── jackson-module-jaxb-annotations-2.9.8.jar │ ├── javassist-3.22.0-CR2.jar │ ├── javax.annotation-api-1.2.jar │ ├── javax.inject-1.jar │ ├── javax.inject-2.5.0-b42.jar │ ├── javax.servlet-api-3.1.0.jar │ ├── javax.ws.rs-api-2.1.1.jar │ ├── javax.ws.rs-api-2.1.jar │ ├── jaxb-api-2.3.0.jar │ ├── jersey-client-2.27.jar │ ├── jersey-common-2.27.jar │ ├── jersey-container-servlet-2.27.jar │ ├── jersey-container-servlet-core-2.27.jar │ ├── jersey-hk2-2.27.jar │ ├── jersey-media-jaxb-2.27.jar │ ├── jersey-server-2.27.jar │ ├── jetty-client-9.4.14.v20181114.jar │ ├── jetty-continuation-9.4.14.v20181114.jar │ ├── jetty-http-9.4.14.v20181114.jar │ ├── jetty-io-9.4.14.v20181114.jar │ ├── jetty-security-9.4.14.v20181114.jar │ ├── jetty-server-9.4.14.v20181114.jar │ ├── jetty-servlet-9.4.14.v20181114.jar │ ├── jetty-servlets-9.4.14.v20181114.jar │ ├── jetty-util-9.4.14.v20181114.jar │ ├── jopt-simple-5.0.4.jar │ ├── kafka-clients-2.2.1.jar │ ├── kafka-log4j-appender-2.2.1.jar │ ├── kafka-streams-2.2.1.jar │ ├── kafka-streams-examples-2.2.1.jar │ ├── kafka-streams-scala_2.11-2.2.1.jar │ ├── kafka-streams-test-utils-2.2.1.jar │ ├── kafka-tools-2.2.1.jar │ ├── kafka_2.11-2.2.1-javadoc.jar │ ├── kafka_2.11-2.2.1-javadoc.jar.asc │ ├── kafka_2.11-2.2.1-scaladoc.jar │ ├── kafka_2.11-2.2.1-scaladoc.jar.asc │ ├── kafka_2.11-2.2.1-sources.jar │ ├── kafka_2.11-2.2.1-sources.jar.asc │ ├── kafka_2.11-2.2.1-test-sources.jar │ ├── kafka_2.11-2.2.1-test-sources.jar.asc │ ├── kafka_2.11-2.2.1-test.jar │ ├── kafka_2.11-2.2.1-test.jar.asc │ ├── kafka_2.11-2.2.1.jar │ ├── kafka_2.11-2.2.1.jar.asc │ ├── log4j-1.2.17.jar │ ├── lz4-java-1.5.0.jar │ ├── maven-artifact-3.6.0.jar │ ├── metrics-core-2.2.0.jar │ ├── osgi-resource-locator-1.0.1.jar │ ├── plexus-utils-3.1.0.jar │ ├── reflections-0.9.11.jar │ ├── rocksdbjni-5.15.10.jar │ ├── scala-library-2.11.12.jar │ ├── scala-logging_2.11-3.9.0.jar │ ├── scala-reflect-2.11.12.jar │ ├── slf4j-api-1.7.25.jar │ ├── slf4j-log4j12-1.7.25.jar │ ├── snappy-java-1.1.7.2.jar │ ├── validation-api-1.1.0.Final.jar │ ├── zkclient-0.11.jar │ ├── zookeeper-3.4.13.jar │ └── zstd-jni-1.3.8-1.jar ├── logs │ ├── controller.log │ ├── controller.log.2019-07-16-13 │ ├── controller.log.2019-07-16-14 │ ├── controller.log.2019-07-16-15 │ ├── controller.log.2019-07-16-16 │ ├── controller.log.2019-07-16-17 │ ├── controller.log.2019-07-16-18 │ ├── kafka-authorizer.log │ ├── kafka-request.log │ ├── kafkaServer-gc.log.0.current │ ├── kafkaServer.out │ ├── log-cleaner.log │ ├── log-cleaner.log.2019-07-16-13 │ ├── log-cleaner.log.2019-07-16-14 │ ├── log-cleaner.log.2019-07-16-15 │ ├── log-cleaner.log.2019-07-16-16 │ ├── log-cleaner.log.2019-07-16-18 │ ├── server.log │ ├── server.log.2019-07-16-13 │ ├── server.log.2019-07-16-14 │ ├── server.log.2019-07-16-15 │ ├── server.log.2019-07-16-16 │ ├── server.log.2019-07-16-17 │ ├── server.log.2019-07-16-18 │ ├── state-change.log │ ├── state-change.log.2019-07-16-13 │ ├── state-change.log.2019-07-16-14 │ ├── state-change.log.2019-07-16-15 │ ├── state-change.log.2019-07-16-16 │ ├── state-change.log.2019-07-16-17 │ ├── state-change.log.2019-07-16-18 │ ├── zookeeper-gc.log.0.current │ └── zookeeper.out └── site-docs │ └── kafka_2.11-2.2.1-site-docs.tgz └── kafkat-part.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/README.md -------------------------------------------------------------------------------- /blockchain-explorer/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/blockchain-explorer/docker-compose.yaml -------------------------------------------------------------------------------- /blockchain-explorer/examples/net1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/blockchain-explorer/examples/net1/.gitignore -------------------------------------------------------------------------------- /blockchain-explorer/examples/net1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/blockchain-explorer/examples/net1/README.md -------------------------------------------------------------------------------- /blockchain-explorer/examples/net1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/blockchain-explorer/examples/net1/config.json -------------------------------------------------------------------------------- /blockchain-explorer/examples/net1/connection-profile/first-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/blockchain-explorer/examples/net1/connection-profile/first-network.json -------------------------------------------------------------------------------- /fabric-kafka/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=net 2 | IMAGE_TAG=1.4.1 3 | -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/abac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/abac.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/deprecated.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/discard.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/table_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/table_marshal.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/table_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/table_merge.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/table_unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/table_unmarshal.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/LICENSE -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/attrmgr/attrmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/attrmgr/attrmgr.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/cid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/cid/README.md -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/cid/cid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/cid/cid.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/cid/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/core/chaincode/shim/ext/cid/interfaces.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/identities.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/identities.pb.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/identities.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/identities.proto -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_config.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_config.pb.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_config.proto -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_principal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_principal.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_principal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_principal.pb.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_principal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/hyperledger/fabric/protos/msp/msp_principal.proto -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/abac/go/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/abac/go/vendor/vendor.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/chaincode_example02/go/chaincode_example02.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/chaincode_example02/go/chaincode_example02.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/chaincode_example02/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/chaincode_example02/java/build.gradle -------------------------------------------------------------------------------- /fabric-kafka/chaincode/chaincode_example02/java/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/chaincode_example02/java/settings.gradle -------------------------------------------------------------------------------- /fabric-kafka/chaincode/chaincode_example02/java/src/main/java/org/hyperledger/fabric/example/SimpleChaincode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/chaincode_example02/java/src/main/java/org/hyperledger/fabric/example/SimpleChaincode.java -------------------------------------------------------------------------------- /fabric-kafka/chaincode/chaincode_example02/node/chaincode_example02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/chaincode_example02/node/chaincode_example02.js -------------------------------------------------------------------------------- /fabric-kafka/chaincode/chaincode_example02/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/chaincode_example02/node/package.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/go/fabcar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/go/fabcar.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript-low-level/fabcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript-low-level/fabcar.js -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript-low-level/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript-low-level/package.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript/.editorconfig -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/.eslintignore: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | 5 | coverage 6 | -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript/.eslintrc.js -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript/.gitignore -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript/index.js -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/lib/fabcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript/lib/fabcar.js -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/javascript/package.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/.editorconfig -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/.gitignore -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/package.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/src/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/src/car.ts -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/src/fabcar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/src/fabcar.ts -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/src/index.ts -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/tsconfig.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/fabcar/typescript/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/fabcar/typescript/tslint.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02/go/META-INF/statedb/couchdb/indexes/indexOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02/go/META-INF/statedb/couchdb/indexes/indexOwner.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02/go/marbles_chaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02/go/marbles_chaincode.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02/node/META-INF/statedb/couchdb/indexes/indexOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02/node/META-INF/statedb/couchdb/indexes/indexOwner.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02/node/marbles_chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02/node/marbles_chaincode.js -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02/node/package.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02_private/collections_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02_private/collections_config.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02_private/go/META-INF/statedb/couchdb/collections/collectionMarbles/indexes/indexOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02_private/go/META-INF/statedb/couchdb/collections/collectionMarbles/indexes/indexOwner.json -------------------------------------------------------------------------------- /fabric-kafka/chaincode/marbles02_private/go/marbles_chaincode_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/marbles02_private/go/marbles_chaincode_private.go -------------------------------------------------------------------------------- /fabric-kafka/chaincode/sacc/sacc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/chaincode/sacc/sacc.go -------------------------------------------------------------------------------- /fabric-kafka/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/configtx.yaml -------------------------------------------------------------------------------- /fabric-kafka/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/crypto-config.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-orderer1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-orderer1.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-orderer2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-orderer2.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-orderer3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-orderer3.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-peer0-org1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-peer0-org1.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-peer0-org2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-peer0-org2.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-peer1-org1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-peer1-org1.yaml -------------------------------------------------------------------------------- /fabric-kafka/docker-compose-peer1-org2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/fabric-kafka/docker-compose-peer1-org2.yaml -------------------------------------------------------------------------------- /images/Hyp-explorer-Transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Hyp-explorer-Transactions.png -------------------------------------------------------------------------------- /images/Hyp-explorer-blockhash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Hyp-explorer-blockhash.png -------------------------------------------------------------------------------- /images/Hyp-explorer-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Hyp-explorer-dash.png -------------------------------------------------------------------------------- /images/KAFKA-MASTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/KAFKA-MASTER.png -------------------------------------------------------------------------------- /images/KAFKA-ZOOKEEPER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/KAFKA-ZOOKEEPER.png -------------------------------------------------------------------------------- /images/Kafka-tool-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Kafka-tool-001.png -------------------------------------------------------------------------------- /images/Kafka-tool-Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Kafka-tool-Data.png -------------------------------------------------------------------------------- /images/Kafka-tool-Replicas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Kafka-tool-Replicas.png -------------------------------------------------------------------------------- /images/Kafkat-partitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Kafkat-partitions.png -------------------------------------------------------------------------------- /images/Peer-cc-query.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/Peer-cc-query.PNG -------------------------------------------------------------------------------- /images/kafka-kill-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafka-kill-after.png -------------------------------------------------------------------------------- /images/kafka-kill-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafka-kill-before.png -------------------------------------------------------------------------------- /images/kafka-manager-brokers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafka-manager-brokers.png -------------------------------------------------------------------------------- /images/kafka-manager-topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafka-manager-topics.png -------------------------------------------------------------------------------- /images/kafka-tool.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafka-tool.PNG -------------------------------------------------------------------------------- /images/kafkat-brokers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafkat-brokers.png -------------------------------------------------------------------------------- /images/kafkat-topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/kafkat-topics.png -------------------------------------------------------------------------------- /images/orderer-create-channel-topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/orderer-create-channel-topic.png -------------------------------------------------------------------------------- /images/orderer1-kafka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/orderer1-kafka.png -------------------------------------------------------------------------------- /images/orderer1-start1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/orderer1-start1.png -------------------------------------------------------------------------------- /images/peer0-org1-cc-install.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer0-org1-cc-install.PNG -------------------------------------------------------------------------------- /images/peer0-org1-cc-instantiated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer0-org1-cc-instantiated.png -------------------------------------------------------------------------------- /images/peer0-org1-channel-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer0-org1-channel-update.png -------------------------------------------------------------------------------- /images/peer0-org1-create-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer0-org1-create-channel.png -------------------------------------------------------------------------------- /images/peer1-org1-joined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer1-org1-joined.png -------------------------------------------------------------------------------- /images/peer1-org1-logs-joined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer1-org1-logs-joined.png -------------------------------------------------------------------------------- /images/peer1-org1-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer1-org1-query.png -------------------------------------------------------------------------------- /images/peer1-org2-cc-instantiated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer1-org2-cc-instantiated.png -------------------------------------------------------------------------------- /images/peer1-org2-joined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/images/peer1-org2-joined.png -------------------------------------------------------------------------------- /kafka-steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka-steps.sh -------------------------------------------------------------------------------- /kafka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/LICENSE -------------------------------------------------------------------------------- /kafka/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/NOTICE -------------------------------------------------------------------------------- /kafka/bin/connect-distributed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/connect-distributed.sh -------------------------------------------------------------------------------- /kafka/bin/connect-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/connect-standalone.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-acls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-acls.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-broker-api-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-broker-api-versions.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-configs.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-console-consumer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-console-consumer.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-console-producer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-console-producer.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-consumer-groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-consumer-groups.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-consumer-perf-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-consumer-perf-test.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-delegation-tokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-delegation-tokens.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-delete-records.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-delete-records.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-dump-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-dump-log.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-log-dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-log-dirs.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-mirror-maker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-mirror-maker.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-preferred-replica-election.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-preferred-replica-election.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-producer-perf-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-producer-perf-test.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-reassign-partitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-reassign-partitions.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-replica-verification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-replica-verification.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-run-class.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-run-class.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-server-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-server-start.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-server-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-server-stop.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-streams-application-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-streams-application-reset.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-topics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-topics.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-verifiable-consumer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-verifiable-consumer.sh -------------------------------------------------------------------------------- /kafka/bin/kafka-verifiable-producer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/kafka-verifiable-producer.sh -------------------------------------------------------------------------------- /kafka/bin/trogdor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/trogdor.sh -------------------------------------------------------------------------------- /kafka/bin/windows/connect-distributed.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/connect-distributed.bat -------------------------------------------------------------------------------- /kafka/bin/windows/connect-standalone.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/connect-standalone.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-acls.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-acls.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-broker-api-versions.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-broker-api-versions.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-configs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-configs.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-console-consumer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-console-consumer.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-console-producer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-console-producer.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-consumer-groups.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-consumer-groups.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-consumer-perf-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-consumer-perf-test.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-delegation-tokens.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-delegation-tokens.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-dump-log.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-dump-log.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-mirror-maker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-mirror-maker.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-preferred-replica-election.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-preferred-replica-election.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-producer-perf-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-producer-perf-test.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-reassign-partitions.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-reassign-partitions.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-replica-verification.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-replica-verification.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-run-class.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-run-class.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-server-start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-server-start.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-server-stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-server-stop.bat -------------------------------------------------------------------------------- /kafka/bin/windows/kafka-topics.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/kafka-topics.bat -------------------------------------------------------------------------------- /kafka/bin/windows/zookeeper-server-start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/zookeeper-server-start.bat -------------------------------------------------------------------------------- /kafka/bin/windows/zookeeper-server-stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/zookeeper-server-stop.bat -------------------------------------------------------------------------------- /kafka/bin/windows/zookeeper-shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/windows/zookeeper-shell.bat -------------------------------------------------------------------------------- /kafka/bin/zookeeper-security-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/zookeeper-security-migration.sh -------------------------------------------------------------------------------- /kafka/bin/zookeeper-server-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/zookeeper-server-start.sh -------------------------------------------------------------------------------- /kafka/bin/zookeeper-server-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/zookeeper-server-stop.sh -------------------------------------------------------------------------------- /kafka/bin/zookeeper-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/bin/zookeeper-shell.sh -------------------------------------------------------------------------------- /kafka/config/connect-console-sink.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-console-sink.properties -------------------------------------------------------------------------------- /kafka/config/connect-console-source.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-console-source.properties -------------------------------------------------------------------------------- /kafka/config/connect-distributed.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-distributed.properties -------------------------------------------------------------------------------- /kafka/config/connect-file-sink.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-file-sink.properties -------------------------------------------------------------------------------- /kafka/config/connect-file-source.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-file-source.properties -------------------------------------------------------------------------------- /kafka/config/connect-log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-log4j.properties -------------------------------------------------------------------------------- /kafka/config/connect-standalone.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/connect-standalone.properties -------------------------------------------------------------------------------- /kafka/config/consumer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/consumer.properties -------------------------------------------------------------------------------- /kafka/config/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/log4j.properties -------------------------------------------------------------------------------- /kafka/config/producer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/producer.properties -------------------------------------------------------------------------------- /kafka/config/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/server.properties -------------------------------------------------------------------------------- /kafka/config/tools-log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/tools-log4j.properties -------------------------------------------------------------------------------- /kafka/config/trogdor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/trogdor.conf -------------------------------------------------------------------------------- /kafka/config/zookeeper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/config/zookeeper.properties -------------------------------------------------------------------------------- /kafka/libs/activation-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/activation-1.1.1.jar -------------------------------------------------------------------------------- /kafka/libs/aopalliance-repackaged-2.5.0-b42.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/aopalliance-repackaged-2.5.0-b42.jar -------------------------------------------------------------------------------- /kafka/libs/argparse4j-0.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/argparse4j-0.7.0.jar -------------------------------------------------------------------------------- /kafka/libs/audience-annotations-0.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/audience-annotations-0.5.0.jar -------------------------------------------------------------------------------- /kafka/libs/commons-lang3-3.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/commons-lang3-3.8.1.jar -------------------------------------------------------------------------------- /kafka/libs/connect-api-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/connect-api-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/connect-basic-auth-extension-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/connect-basic-auth-extension-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/connect-file-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/connect-file-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/connect-json-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/connect-json-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/connect-runtime-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/connect-runtime-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/connect-transforms-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/connect-transforms-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/guava-20.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/guava-20.0.jar -------------------------------------------------------------------------------- /kafka/libs/hk2-api-2.5.0-b42.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/hk2-api-2.5.0-b42.jar -------------------------------------------------------------------------------- /kafka/libs/hk2-locator-2.5.0-b42.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/hk2-locator-2.5.0-b42.jar -------------------------------------------------------------------------------- /kafka/libs/hk2-utils-2.5.0-b42.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/hk2-utils-2.5.0-b42.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-annotations-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-annotations-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-core-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-core-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-databind-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-databind-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-datatype-jdk8-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-datatype-jdk8-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-jaxrs-base-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-jaxrs-base-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-jaxrs-json-provider-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-jaxrs-json-provider-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/jackson-module-jaxb-annotations-2.9.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jackson-module-jaxb-annotations-2.9.8.jar -------------------------------------------------------------------------------- /kafka/libs/javassist-3.22.0-CR2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javassist-3.22.0-CR2.jar -------------------------------------------------------------------------------- /kafka/libs/javax.annotation-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javax.annotation-api-1.2.jar -------------------------------------------------------------------------------- /kafka/libs/javax.inject-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javax.inject-1.jar -------------------------------------------------------------------------------- /kafka/libs/javax.inject-2.5.0-b42.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javax.inject-2.5.0-b42.jar -------------------------------------------------------------------------------- /kafka/libs/javax.servlet-api-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javax.servlet-api-3.1.0.jar -------------------------------------------------------------------------------- /kafka/libs/javax.ws.rs-api-2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javax.ws.rs-api-2.1.1.jar -------------------------------------------------------------------------------- /kafka/libs/javax.ws.rs-api-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/javax.ws.rs-api-2.1.jar -------------------------------------------------------------------------------- /kafka/libs/jaxb-api-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jaxb-api-2.3.0.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-client-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-client-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-common-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-common-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-container-servlet-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-container-servlet-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-container-servlet-core-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-container-servlet-core-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-hk2-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-hk2-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-media-jaxb-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-media-jaxb-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jersey-server-2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jersey-server-2.27.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-client-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-client-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-continuation-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-continuation-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-http-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-http-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-io-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-io-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-security-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-security-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-server-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-server-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-servlet-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-servlet-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-servlets-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-servlets-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jetty-util-9.4.14.v20181114.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jetty-util-9.4.14.v20181114.jar -------------------------------------------------------------------------------- /kafka/libs/jopt-simple-5.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/jopt-simple-5.0.4.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-clients-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-clients-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-log4j-appender-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-log4j-appender-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-streams-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-streams-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-streams-examples-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-streams-examples-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-streams-scala_2.11-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-streams-scala_2.11-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-streams-test-utils-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-streams-test-utils-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka-tools-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka-tools-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-javadoc.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-javadoc.jar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-javadoc.jar.asc -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-scaladoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-scaladoc.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-scaladoc.jar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-scaladoc.jar.asc -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-sources.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-sources.jar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-sources.jar.asc -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-test-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-test-sources.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-test-sources.jar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-test-sources.jar.asc -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-test.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1-test.jar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1-test.jar.asc -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1.jar -------------------------------------------------------------------------------- /kafka/libs/kafka_2.11-2.2.1.jar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/kafka_2.11-2.2.1.jar.asc -------------------------------------------------------------------------------- /kafka/libs/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/log4j-1.2.17.jar -------------------------------------------------------------------------------- /kafka/libs/lz4-java-1.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/lz4-java-1.5.0.jar -------------------------------------------------------------------------------- /kafka/libs/maven-artifact-3.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/maven-artifact-3.6.0.jar -------------------------------------------------------------------------------- /kafka/libs/metrics-core-2.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/metrics-core-2.2.0.jar -------------------------------------------------------------------------------- /kafka/libs/osgi-resource-locator-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/osgi-resource-locator-1.0.1.jar -------------------------------------------------------------------------------- /kafka/libs/plexus-utils-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/plexus-utils-3.1.0.jar -------------------------------------------------------------------------------- /kafka/libs/reflections-0.9.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/reflections-0.9.11.jar -------------------------------------------------------------------------------- /kafka/libs/rocksdbjni-5.15.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/rocksdbjni-5.15.10.jar -------------------------------------------------------------------------------- /kafka/libs/scala-library-2.11.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/scala-library-2.11.12.jar -------------------------------------------------------------------------------- /kafka/libs/scala-logging_2.11-3.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/scala-logging_2.11-3.9.0.jar -------------------------------------------------------------------------------- /kafka/libs/scala-reflect-2.11.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/scala-reflect-2.11.12.jar -------------------------------------------------------------------------------- /kafka/libs/slf4j-api-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/slf4j-api-1.7.25.jar -------------------------------------------------------------------------------- /kafka/libs/slf4j-log4j12-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/slf4j-log4j12-1.7.25.jar -------------------------------------------------------------------------------- /kafka/libs/snappy-java-1.1.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/snappy-java-1.1.7.2.jar -------------------------------------------------------------------------------- /kafka/libs/validation-api-1.1.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/validation-api-1.1.0.Final.jar -------------------------------------------------------------------------------- /kafka/libs/zkclient-0.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/zkclient-0.11.jar -------------------------------------------------------------------------------- /kafka/libs/zookeeper-3.4.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/zookeeper-3.4.13.jar -------------------------------------------------------------------------------- /kafka/libs/zstd-jni-1.3.8-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/libs/zstd-jni-1.3.8-1.jar -------------------------------------------------------------------------------- /kafka/logs/controller.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log -------------------------------------------------------------------------------- /kafka/logs/controller.log.2019-07-16-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log.2019-07-16-13 -------------------------------------------------------------------------------- /kafka/logs/controller.log.2019-07-16-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log.2019-07-16-14 -------------------------------------------------------------------------------- /kafka/logs/controller.log.2019-07-16-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log.2019-07-16-15 -------------------------------------------------------------------------------- /kafka/logs/controller.log.2019-07-16-16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log.2019-07-16-16 -------------------------------------------------------------------------------- /kafka/logs/controller.log.2019-07-16-17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log.2019-07-16-17 -------------------------------------------------------------------------------- /kafka/logs/controller.log.2019-07-16-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/controller.log.2019-07-16-18 -------------------------------------------------------------------------------- /kafka/logs/kafka-authorizer.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kafka/logs/kafka-request.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kafka/logs/kafkaServer-gc.log.0.current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/kafkaServer-gc.log.0.current -------------------------------------------------------------------------------- /kafka/logs/kafkaServer.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/kafkaServer.out -------------------------------------------------------------------------------- /kafka/logs/log-cleaner.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/log-cleaner.log -------------------------------------------------------------------------------- /kafka/logs/log-cleaner.log.2019-07-16-13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kafka/logs/log-cleaner.log.2019-07-16-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/log-cleaner.log.2019-07-16-14 -------------------------------------------------------------------------------- /kafka/logs/log-cleaner.log.2019-07-16-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/log-cleaner.log.2019-07-16-15 -------------------------------------------------------------------------------- /kafka/logs/log-cleaner.log.2019-07-16-16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/log-cleaner.log.2019-07-16-16 -------------------------------------------------------------------------------- /kafka/logs/log-cleaner.log.2019-07-16-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/log-cleaner.log.2019-07-16-18 -------------------------------------------------------------------------------- /kafka/logs/server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log -------------------------------------------------------------------------------- /kafka/logs/server.log.2019-07-16-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log.2019-07-16-13 -------------------------------------------------------------------------------- /kafka/logs/server.log.2019-07-16-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log.2019-07-16-14 -------------------------------------------------------------------------------- /kafka/logs/server.log.2019-07-16-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log.2019-07-16-15 -------------------------------------------------------------------------------- /kafka/logs/server.log.2019-07-16-16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log.2019-07-16-16 -------------------------------------------------------------------------------- /kafka/logs/server.log.2019-07-16-17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log.2019-07-16-17 -------------------------------------------------------------------------------- /kafka/logs/server.log.2019-07-16-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/server.log.2019-07-16-18 -------------------------------------------------------------------------------- /kafka/logs/state-change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log -------------------------------------------------------------------------------- /kafka/logs/state-change.log.2019-07-16-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log.2019-07-16-13 -------------------------------------------------------------------------------- /kafka/logs/state-change.log.2019-07-16-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log.2019-07-16-14 -------------------------------------------------------------------------------- /kafka/logs/state-change.log.2019-07-16-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log.2019-07-16-15 -------------------------------------------------------------------------------- /kafka/logs/state-change.log.2019-07-16-16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log.2019-07-16-16 -------------------------------------------------------------------------------- /kafka/logs/state-change.log.2019-07-16-17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log.2019-07-16-17 -------------------------------------------------------------------------------- /kafka/logs/state-change.log.2019-07-16-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/state-change.log.2019-07-16-18 -------------------------------------------------------------------------------- /kafka/logs/zookeeper-gc.log.0.current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/zookeeper-gc.log.0.current -------------------------------------------------------------------------------- /kafka/logs/zookeeper.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/logs/zookeeper.out -------------------------------------------------------------------------------- /kafka/site-docs/kafka_2.11-2.2.1-site-docs.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafka/site-docs/kafka_2.11-2.2.1-site-docs.tgz -------------------------------------------------------------------------------- /kafkat-part.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rupeshtr78/fabric-kafka/HEAD/kafkat-part.txt --------------------------------------------------------------------------------