featurebase/dax/controller/poller/config.go
Travis Turner 20429bb9dc
Remove MDS and replace it with Controller (#2219)
* Remove MDS and replace it with Controller

This commit removes the MDS layer (and package) and shifts Controller
package into its place.

* add pprof/fgprof to serverless http router

---------

Co-authored-by: Matthew Jaffee <jaffee@pilosa.com>
2023-01-30 16:54:12 -06:00

16 lines
311 B
Go

package poller
import (
"time"
"github.com/featurebasedb/featurebase/v3/dax"
"github.com/featurebasedb/featurebase/v3/logger"
)
type Config struct {
AddressManager dax.AddressManager
NodeService dax.NodeService
NodePoller NodePoller
PollInterval time.Duration
Logger logger.Logger
}