Coder Social home page Coder Social logo

distributed_computing_fall2017's Introduction

Distributed Shared Memory System

UIUC Distributed Computing Research Group - Fall 2017

Getting Started

psql

  1. Install PostgreSQL:
  1. Login psql: psql
  2. Create DB dc: create database dc
  3. Quit psql: \q
  4. Login DB dc: psql -d dc
  5. Create table keys: CREATE TABLE keys (key VARCHAR(255), value VARCHAR(255), modified_by VARCHAR(255), time_modified TIMESTAMP WITHOUT TIME ZONE, version VARCHAR(255), temp2 VARCHAR(255), temp3 VARCHAR(255), pkey_id BIGSERIAL PRIMARY KEY);
  6. Force unique keys: ALTER TABLE keys ADD CONSTRAINT uq_key UNIQUE(key, version);
  7. Create role db_user: CREATE ROLE db_user WITH PASSWORD 'db_pw';
  8. Add role login priviliges: ALTER ROLE db_user WITH LOGIN;
  9. Add rest of privileges to role: alter user db_user with superuser;

python packages

  • requests
  • netifaces
  • psycopg2
  • pathlib

Completed Tasks

  1. Postgres database READ/WRITE/DELETE API
  2. Message passing with causal consistency
  3. Averaging Algorithm in Cassandra
  4. Execution of an algorithm from template/config utilizing neighboring nodes
  5. Execution of an algorithm from template on an ad-hoc network of raspberry pi nodes

distributed_computing_fall2017's People

Contributors

suriyakode avatar

Watchers

James Cloos avatar JoshuaLew avatar Larry Liu avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.