-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
echo demo #516
Open
aricart
wants to merge
2
commits into
dev
Choose a base branch
from
echo-demo
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
echo demo #516
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* Copyright 2023 The NATS Authors | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { cli, Command, Flags } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { connect, headers } from "../../src/mod.ts"; | ||
|
||
const root = cli({ | ||
use: "echo-service [--server server:port]", | ||
run: async ( | ||
_cmd: Command, | ||
_args: string[], | ||
flags: Flags, | ||
): Promise<number> => { | ||
const servers = flags.values<string>("server"); | ||
const nc = await connect({ servers }); | ||
const srv = await nc.services.add({ | ||
name: "echo", | ||
version: "0.0.1", | ||
description: "echo service", | ||
metadata: { | ||
"entry": "sample echo service", | ||
}, | ||
}); | ||
|
||
srv.addEndpoint("echo", (err, req) => { | ||
if (err) { | ||
console.log(err); | ||
srv.stop(err); | ||
} else { | ||
console.log(`Handling request on subject ${req.subject}`); | ||
const h = req.headers || headers(); | ||
h.set("ConnectedUrl", `nats://${nc.getServer()}`); | ||
h.set("Timestamp", new Date().toUTCString()); | ||
if (nc.info?.cluster) { | ||
h.set("ConnectedCluster", nc.info.cluster); | ||
} | ||
req.respond(req.data, { headers: h }); | ||
} | ||
}); | ||
|
||
try { | ||
console.log("waiting for requests"); | ||
await srv.stopped; | ||
return 0; | ||
} catch (err) { | ||
console.error(err); | ||
return 1; | ||
} | ||
}, | ||
}); | ||
|
||
root.addFlag({ | ||
name: "server", | ||
short: "s", | ||
type: "string", | ||
usage: "NATS server host:port", | ||
default: "demo.nats.io", | ||
persistent: true, | ||
}); | ||
|
||
Deno.exit(await root.execute(Deno.args)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
/* | ||
* Copyright 2023 The NATS Authors | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { cli, Command, Flags } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { collect } from "../../nats-base-client/util.ts"; | ||
import { millis } from "../../nats-base-client/jsutil.ts"; | ||
import { NatsConnection } from "../../nats-base-client/types.ts"; | ||
import { connect } from "../../src/connect.ts"; | ||
import { QueuedIterator } from "../../nats-base-client/queued_iterator.ts"; | ||
|
||
const root = cli({ | ||
use: | ||
"nats-service [--server host:port] [ping|info|status] [--name n] [--id id])", | ||
}); | ||
|
||
root.addFlag({ | ||
name: "server", | ||
short: "s", | ||
type: "string", | ||
usage: "NATS server host:port", | ||
default: "demo.nats.io", | ||
persistent: true, | ||
}); | ||
|
||
root.addFlag({ | ||
short: "n", | ||
name: "name", | ||
type: "string", | ||
usage: "service name to filter on", | ||
default: "", | ||
persistent: true, | ||
}); | ||
root.addFlag({ | ||
name: "id", | ||
type: "string", | ||
usage: "service id to filter on", | ||
default: "", | ||
persistent: true, | ||
}); | ||
|
||
root.addCommand({ | ||
use: "ping [--name] [--id]", | ||
short: "pings services", | ||
run: async ( | ||
cmd: Command, | ||
_args: string[], | ||
flags: Flags, | ||
): Promise<number> => { | ||
const nc = await createConnection(flags); | ||
const opts = options(flags); | ||
const mc = nc.services.client(); | ||
const infos = (await safeCollect(mc.ping(opts.name, opts.id))).sort( | ||
(a, b) => { | ||
const A = `${a.name} ${a.version}`; | ||
const B = `${b.name} ${b.version}`; | ||
return B.localeCompare(A); | ||
}, | ||
); | ||
if (infos.length) { | ||
console.table(infos); | ||
} | ||
await nc.close(); | ||
return 0; | ||
}, | ||
}); | ||
|
||
root.addCommand({ | ||
use: "stats [--name] [--id]", | ||
short: "get service stats", | ||
run: async ( | ||
cmd: Command, | ||
_args: string[], | ||
flags: Flags, | ||
): Promise<number> => { | ||
const nc = await createConnection(flags); | ||
const mc = nc.services.client(); | ||
const opts = options(flags); | ||
// stats are grouped by endpoint, if this is a multi-endpoint map this so that each | ||
// endpoint looks like a service | ||
const stats: { num_requests: number }[] = []; | ||
(await safeCollect(mc.stats(opts.name, opts.id))).forEach( | ||
(s) => { | ||
const { name, id, version } = s; | ||
s.endpoints?.forEach((ne) => { | ||
const line = Object.assign(ne, { | ||
name, | ||
endpoint: ne.name, | ||
id, | ||
version, | ||
}); | ||
line.processing_time = millis(line.processing_time); | ||
line.average_processing_time = millis(line.average_processing_time); | ||
stats.push(line); | ||
}); | ||
}, | ||
); | ||
|
||
stats.sort((a, b) => { | ||
return b.num_requests - a.num_requests; | ||
}); | ||
|
||
if (stats.length) { | ||
console.table(stats); | ||
} | ||
|
||
await nc.close(); | ||
return 0; | ||
}, | ||
}); | ||
|
||
root.addCommand({ | ||
use: "info [--name] [--id]", | ||
short: "get service info", | ||
run: async ( | ||
cmd: Command, | ||
_args: string[], | ||
flags: Flags, | ||
): Promise<number> => { | ||
const nc = await createConnection(flags); | ||
const mc = nc.services.client(); | ||
const opts = options(flags); | ||
|
||
const infos = (await safeCollect(mc.info(opts.name, opts.id))).sort( | ||
(a, b) => { | ||
const A = `${a.name} ${a.version}`; | ||
const B = `${b.name} ${b.version}`; | ||
return B.localeCompare(A); | ||
}, | ||
); | ||
if (infos.length) { | ||
console.table(infos); | ||
} | ||
await nc.close(); | ||
return 0; | ||
}, | ||
}); | ||
|
||
function createConnection(flags: Flags): Promise<NatsConnection> { | ||
const servers = [flags.value<string>("server")]; | ||
return connect({ servers }); | ||
} | ||
|
||
function options( | ||
flags: Flags, | ||
): { name?: string; id?: string } { | ||
let name: string | undefined = flags.value<string>("name"); | ||
if (name === "") { | ||
name = undefined; | ||
} | ||
let id: string | undefined = flags.value<string>("id"); | ||
if (id === "") { | ||
id = undefined; | ||
} | ||
return { name, id }; | ||
} | ||
|
||
async function safeCollect<T>(iter: Promise<QueuedIterator<T>>): Promise<T[]> { | ||
try { | ||
return await collect(await iter); | ||
} catch (err) { | ||
if (err.code === "503") { | ||
console.log("no services found"); | ||
return Promise.resolve([]); | ||
} else { | ||
throw err; | ||
} | ||
} | ||
} | ||
|
||
Deno.exit(await root.execute(Deno.args)); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/nats-io/nats-architecture-and-design/blob/main/adr/ADR-21.md :P