Skip to content

Latest commit

 

History

History
41 lines (38 loc) · 1.64 KB

File metadata and controls

41 lines (38 loc) · 1.64 KB

Feldera Interface

There are four different ways to interact with Feldera. All methods allow users to define and run pipelines, monitor their performance and interact with materialized tables, views and change streams.

import Link from '@docusaurus/Link';

<div className="card">
  <div className="card__body">
    <h3>
      <Link to="/interface/web-console">Web Console</Link>
    </h3>
    <p>The Web Console is the most convenient starting point to using Feldera. Simply aim your web browser at a running Feldera instance (and authenticate if required). This is typically `127.0.0.1:8080` if you are using our Docker instance or `try.feldera.com` if you are using our public cloud sandbox.</p>
  </div>
</div>
<div className="card">
  <div className="card__body">
    <h3>
      <Link to="/interface/cli">Commandline Interface (`fda`)</Link>
    </h3>
    <p>`fda` allows users to interact with a Feldera instances from the CLI. It also provides a shell that makes it convenient to issue ad-hoc queries and start/stop pipelines.</p>
  </div>
</div>
<div className="card">
  <div className="card__body">
    <h3>
      <Link to="pathname:///python/">Python SDK</Link>
    </h3>
    <p>The Python SDK provides a convenient wrapper around our REST API. It allows you to programmatically define pipelines.</p>
  </div>
</div>
<div className="card">
  <div className="card__body">
    <h3>
      <Link to="/api">REST API</Link>
    </h3>
    <p>All the above methods interact with Feldera using the REST API. This is intended for users who would like to build their own automation to Feldera. `Pipeline` is the most important API type. </p>
  </div>
</div>