Skip to content
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
11 changes: 0 additions & 11 deletions docs/blog/2021-08-20-meteor-launch.md

This file was deleted.

5 changes: 0 additions & 5 deletions docs/blog/authors.yml

This file was deleted.

13 changes: 9 additions & 4 deletions docs/docs/introduction.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Introduction

Meteor is a metadata collector tool that helps to extract and sink metadata from the source to the destination.
Meteor is a plugin driven agent for collecting metadata. Meteor has plugins to source metadata from a variety of data stores, services and message queues. It also has sink plugins to send metadata to variety of third party APIs and catalog services.

Meteor agent uses recipes as a set of instructions which are configured by user. Recipes contains configurations about the source from which the metadata will be fetched, information about metadata processors and the destination to where the metadata will be sent.

Meteor’s plugin system allows new plugins to be easily added. With 50+ plugins and many more coming soon to extract and sink metadata, it is easy to start collecting metadata from various sources and sink to any data catalog or store.

## Key Features

- **Metadata Extractions** Easily orchestrate your metadata extraction via recipe and Meteor's built-in features.
- **Scale:** Meteor scales in an instant, both vertically and horizontally for high performance.
- **No Dependency:** Written in Go. It compiles into a single binary with no external dependency.
- **Extensible:** Plugin system allows new sources and sinks to be easily added.
- **Ecosystem:** Extract metadata for many popular services with a wide number of service plugins.
- **Customizable:** Add your own processors and sinks to suit your many use cases.
- **Runtime:** Meteor can run inside VMs or containers in a fully managed runtime environment like kubernetes.
- **Runtime:** Meteor can run inside VMs or containers with minimal memory footprint.

## Usage

Expand Down
19 changes: 6 additions & 13 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/odpf/meteor/edit/master/docs/',
sidebarCollapsed: false,
},
blog: {
showReadingTime: true,
editUrl:
'https://github.com/odpf/meteor/edit/master/docs/blog/',
},
blog: false,
theme: {
customCss: [
require.resolve('./src/css/theme.css'),
require.resolve('./src/css/custom.css')
],
},
gtag: {
trackingID: 'G-ZTPBZN6VK7',
},
}),
],
],
Expand All @@ -42,22 +42,18 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
colorMode: {
defaultMode: 'light',
respectPrefersColorScheme: true,
switchConfig: {
darkIcon: '☾',
lightIcon: '☀️',
},
},
navbar: {
title: 'Meteor',
logo: { src: 'img/logo.svg', },
hideOnScroll: true,
items: [
{
type: 'doc',
docId: 'introduction',
position: 'left',
label: 'Docs',
},
{ to: '/blog', label: 'Blog', position: 'left' },
{ to: '/help', label: 'Help', position: 'left' },
{
href: 'https://bit.ly/2RzPbtn',
Expand Down Expand Up @@ -104,9 +100,6 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
gtag: {
trackingID: 'G-ZTPBZN6VK7',
},
announcementBar: {
id: 'star-repo',
content: '⭐️ If you like Meteor, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/odpf/meteor">GitHub</a>! ⭐',
Expand Down
Loading