Skip to content

Instantly share code, notes, and snippets.

@mumrah
Created November 20, 2012 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mumrah/e59b9c8ee4ae56dad44f to your computer and use it in GitHub Desktop.
Save mumrah/e59b9c8ee4ae56dad44f to your computer and use it in GitHub Desktop.
$ curl -v -X POST http://localhost:8080/test-topic -d 'Hello, Kafka'
* About to connect() to localhost port 8080 (#0)
* Trying ::1... connected
* Connected to localhost (::1) port 8080 (#0)
> POST /test-topic HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: localhost:8080
> Accept: */*
> Content-Length: 12
> Content-Type: application/x-www-form-urlencoded
>
< HTTP/1.1 204 No Content
< Server: Jetty(6.1.25)
<
* Connection #0 to host localhost left intact
* Closing connection #0
$ curl -v -X GET http://localhost:8080/test-topic/group-1
* About to connect() to localhost port 8080 (#0)
* Trying ::1... connected
* Connected to localhost (::1) port 8080 (#0)
> GET /test-topic/group-1 HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Length: 12
< Server: Jetty(6.1.25)
<
* Connection #0 to host localhost left intact
* Closing connection #0
Hello, Kafka
$ curl -v -X GET http://localhost:8080/test-topic/group-1
* About to connect() to localhost port 8080 (#0)
* Trying ::1... connected
* Connected to localhost (::1) port 8080 (#0)
> GET /test-topic/group-1 HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 408 Request Timeout
< Content-Length: 33
< Server: Jetty(6.1.25)
<
* Connection #0 to host localhost left intact
* Closing connection #0
Timeout reading from Kafka stream
$ curl -v -X GET http://localhost:8080/test-topic/group-2
* About to connect() to localhost port 8080 (#0)
* Trying ::1... connected
* Connected to localhost (::1) port 8080 (#0)
> GET /test-topic/group-2 HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Length: 12
< Server: Jetty(6.1.25)
<
* Connection #0 to host localhost left intact
* Closing connection #0
Hello, Kafka
$ curl -v -X POST http://localhost:8080/test-topic -d 'Hello again!'
* About to connect() to localhost port 8080 (#0)
* Trying ::1... connected
* Connected to localhost (::1) port 8080 (#0)
> POST /test-topic HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: localhost:8080
> Accept: */*
> Content-Length: 12
> Content-Type: application/x-www-form-urlencoded
>
< HTTP/1.1 204 No Content
< Server: Jetty(6.1.25)
<
* Connection #0 to host localhost left intact
* Closing connection #0
$ curl -v -X GET http://localhost:8080/test-topic/group-1
* About to connect() to localhost port 8080 (#0)
* Trying ::1... connected
* Connected to localhost (::1) port 8080 (#0)
> GET /test-topic/group-1 HTTP/1.1
> User-Agent: curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Length: 12
< Server: Jetty(6.1.25)
<
* Connection #0 to host localhost left intact
* Closing connection #0
Hello again!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment