Skip to content
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

Change Artie domain to artie.com #548

Merged
merged 2 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<img height="150px" src="https://github.com/artie-labs/transfer/assets/4412200/238df0c7-6087-4ddc-b83b-24638212af6a"/>
<h3>Artie Transfer</h3>
<p><b>⚡️ Blazing fast data replication between OLTP and OLAP databases ⚡️</b></p>
<a href="https://artie.so/slack"><img src="https://img.shields.io/badge/[email protected]?logo=slack"/></a>
<a href="https://docs.artie.so/running-transfer/overview"><img src="https://user-images.githubusercontent.com/4412200/226736695-6b8b9abd-c227-41c7-89a1-805a04c90d08.png"/></a>
<a href="https://artie.com/slack"><img src="https://img.shields.io/badge/[email protected]?logo=slack"/></a>
<a href="https://docs.artie.com/running-transfer/overview"><img src="https://user-images.githubusercontent.com/4412200/226736695-6b8b9abd-c227-41c7-89a1-805a04c90d08.png"/></a>
nathan-artie marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://github.com/artie-labs/transfer/blob/master/LICENSE.txt"><img src="https://user-images.githubusercontent.com/4412200/201544613-a7197bc4-8b61-4fc5-bf09-68ee10133fd7.svg"/></a>
<img src="https://github.com/artie-labs/transfer/actions/workflows/gha-go-test.yml/badge.svg"/>
<br/>
<b><a target="_blank" href="https://artie.so" >Learn more »</a></b>
<b><a target="_blank" href="https://artie.com" >Learn more »</a></b>
</div>
<br/>

Expand Down Expand Up @@ -51,7 +51,7 @@ To run Artie Transfer's stack locally, please refer to the [examples folder](htt

## <a name="getting-started"></a>Getting started

[Getting started guide](https://docs.artie.so/running-transfer/overview)
[Getting started guide](https://docs.artie.com/running-transfer/overview)

## What is currently supported?
Transfer is aiming to provide coverage across all OLTPs and OLAPs databases. Currently Transfer supports:
Expand All @@ -60,14 +60,14 @@ Transfer is aiming to provide coverage across all OLTPs and OLAPs databases. Cur
- Kafka (default)
- Google Pub/Sub

- [Destinations](https://docs.artie.so/real-time-destinations/overview):
- [Destinations](https://docs.artie.com/real-time-destinations/overview):
- Snowflake
- BigQuery
- Redshift
- Microsoft SQL Server
- S3

- [Sources](https://docs.artie.so/real-time-sources/overview):
- [Sources](https://docs.artie.com/real-time-sources/overview):
- MongoDB
- DocumentDB
- PostgreSQL
Expand All @@ -77,15 +77,15 @@ Transfer is aiming to provide coverage across all OLTPs and OLAPs databases. Cur
_If the database you are using is not on the list, feel free to file for a [feature request](https://github.com/artie-labs/transfer/issues/new)._

## Configuration File
* [Artie Transfer configuration file guide](https://docs.artie.so/running-transfer/options)
* [Examples of configuration files](https://docs.artie.so/running-transfer/examples)
* [Artie Transfer configuration file guide](https://docs.artie.com/running-transfer/options)
* [Examples of configuration files](https://docs.artie.com/running-transfer/examples)

## Telemetry

[Artie Transfer's telemetry guide](https://docs.artie.so/telemetry/overview)
[Artie Transfer's telemetry guide](https://docs.artie.com/telemetry/overview)

## Tests
Transfer is written in Go and uses [counterfeiter](https://github.com/maxbrunsfeld/counterfeiter) to mock.
Transfer is written in Go and uses [counterfeiter](https://github.com/maxbrunsfeld/counterfeiter) to mock.
To run the tests, run the following commands:

```sh
Expand Down
4 changes: 2 additions & 2 deletions examples/mongodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ docker-compose -f docker-compose.yaml exec mongodb bash -c '/usr/local/bin/init-
# Now, if you want to connect to the Mongo shell and insert more data, go right ahead
docker-compose -f docker-compose.yaml exec mongodb bash -c 'mongo -u $MONGODB_USER -p $MONGODB_PASSWORD --authenticationDatabase admin inventory'
db.customers.insert([
{ _id : NumberLong("1020"), first_name : 'Robin',
last_name : 'Tang', email : 'robin@artie.so', unique_id : UUID(),
{ _id : NumberLong("1020"), first_name : 'Robin',
last_name : 'Tang', email : 'robin@example.com', unique_id : UUID(),
test_bool_false: false, test_bool_true: true, new_id: ObjectId(),
test_decimal: NumberDecimal("13.37"), test_int: NumberInt("1337"),
test_decimal_2: 13.37, test_list: [1, 2, 3, 4, "hello"], test_null: null, test_ts: Timestamp(42, 1), test_nested_object: {a: { b: { c: "hello"}}}}
Expand Down
4 changes: 2 additions & 2 deletions examples/pubsub_postgres/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Postgres Example

This example requires additional configuration on the Pub/Sub side.
This example requires additional configuration on the Pub/Sub side.

Please see https://docs.artie.so/tutorials/setting-up-pub-sub for further details.
Please see https://docs.artie.com/tutorials/setting-up-pub-sub for further details.
4 changes: 2 additions & 2 deletions lib/cdc/mongo/debezium_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (p *MongoTestSuite) TestMongoDBEventCustomer() {
"schema": {},
"payload": {
"before": null,
"after": "{\"_id\": {\"$numberLong\": \"1003\"},\"first_name\": \"Robin\",\"last_name\": \"Tang\",\"email\": \"robin@artie.so\", \"nested\": {\"object\": \"foo\"}}",
"after": "{\"_id\": {\"$numberLong\": \"1003\"},\"first_name\": \"Robin\",\"last_name\": \"Tang\",\"email\": \"robin@example.com\", \"nested\": {\"object\": \"foo\"}}",
"patch": null,
"filter": null,
"updateDescription": null,
Expand Down Expand Up @@ -176,7 +176,7 @@ func (p *MongoTestSuite) TestMongoDBEventCustomer() {
assert.Equal(p.T(), evtData["_id"], 1003)
assert.Equal(p.T(), evtData["first_name"], "Robin")
assert.Equal(p.T(), evtData["last_name"], "Tang")
assert.Equal(p.T(), evtData["email"], "robin@artie.so")
assert.Equal(p.T(), evtData["email"], "robin@example.com")

evtDataWithIncludedAt, err := evt.GetData(map[string]any{"_id": 1003}, &kafkalib.TopicConfig{})
assert.NoError(p.T(), err)
Expand Down
2 changes: 1 addition & 1 deletion lib/cdc/util/relational_data_test.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/optimization/event_bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func BenchmarkTableData_ApproxSize_WideTable(b *testing.B) {
"favorite_fruits": []string{"strawberry", "kiwi", "oranges"},
"random": false,
"team": []string{"charlie", "jacqueline"},
"email": "robin@artie.so",
"email": "robin@example.com",
"favorite_languages": []string{"go", "sql"},
"favorite_databases": []string{"postgres", "bigtable"},
"created_at": time.Now(),
Expand Down
2 changes: 1 addition & 1 deletion lib/size/size_bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func BenchmarkGetApproxSize_WideTable(b *testing.B) {
"favorite_fruits": []string{"strawberry", "kiwi", "oranges"},
"random": false,
"team": []string{"charlie", "jacqueline"},
"email": "robin@artie.so",
"email": "robin@example.com",
"favorite_languages": []string{"go", "sql"},
"favorite_databases": []string{"postgres", "bigtable"},
"created_at": time.Now(),
Expand Down
2 changes: 1 addition & 1 deletion lib/telemetry/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Telemetry

Artie Transfer's docs have moved! Please visit this link to see documentation regarding Transfer's telemetry package. https://docs.artie.so/telemetry/overview
Artie Transfer's docs have moved! Please visit this link to see documentation regarding Transfer's telemetry package. https://docs.artie.com/telemetry/overview