Short Slides

Download Report

Transcript Short Slides

Second-hand Trading Web Service
Group Member: Jingwei Hao
Xiaofeng Yuan
Yanjun Liu
Motivation & Goals
●
Provide a platform for convenient second-hand product trading
●
Design clean and direct user interface easy to use
●
Considering large amount of potential users, the web service should be fault tolerant, scalable
and efficient
●
Modularize functions as independent service in different servers for better performance, e.g.
search, account and item management, etc.
●
Interact with AWS S3 smartly not naively, make the searching intelligent through pre-defined
logic, analysis and learning techniques
●
Goals: Allocate service in various server thus achieve high scalability and trigger them through
load balancing techniques to realize efficiency. Backup servers of fault tolerance to ensure
stability. Interact with database smartly for better performance. Make a comprehensively wellfunctioning second-hand trade web service and make trading second-hand products easier.
Related Work
●
●
●
●
●
Pull-based Load Balancing Using a Messaging and Queuing Unit - Colyer, Adrian Mark. "Highavailability WWW computer server system with pull-based load balancing using a messaging
and queuing unit in front of back-end servers."
Load Balancing Algorithms: Random, Round Robin, Weighted Round Robin, Least Connection,
Weighted Least Connection - http://www.jscape.com/blog/load-balancing-algorithms & Jyoti
Vashistha, Anant Kumar Jayswal. “Comparative Study of Load Balancing Algorithms.”
AWS web service are in wide usage, in which S3 is a popular file based database and people
use buckets and objects to store and manage their data items, e.g AWS build in filter Prefix Amazon Simple Storage Service Developer Guide API Version 2006-03-01.
Various searching methods in the field. Lots rely on fuzzy search to get the needed data.
Levenshtein Distance is one algorithm based on dynamical programming and string match https://en.wikipedia.org/wiki/Levenshtein_distance
There exist several web service framework among which CXF is a widely used one providing
front end programming and supports different transports and data bindings - Apache CXF Web
Service Development. ISBN 978-1-847195-40-1.
System Design Specifics - Architecture
Servic
e Balancer
Client
Client
Client
Backup
Balancer
Servic
e Balancer
S3
Cloud
Backup
Servic
e Balancer
Backup
Balancer and Service are all web services based on CXF, use SOAP protocol for exchanging XML-based messages.
S3: Item Bucket --- Objects: Category/Item/ID with content: id, info, price, imgpath, sellername, sellertel
Person Bucket --- Objects: Name/Tel with Objects: Category/Item/ID
Testing & Evaluation
Fault Tolerance
Take random strategy to select a backup to do the balancing work in case the balancer crashes.
If services fail, the system is able to call available one according to the load balancing strategy.
Load Balancing
1. Random strategy
2. Least Connections strategy
Take the number of current connections each server has into consideration. Every time, we
assign the new client request to the server with the least number of connections.
1. Least Load strategy
Estimate the task load and keep the current task load each server has. Every time, we assign the
new client task to the server with the least load.
Evaluate performance: With certain # of servers, how the mean response time changes as the
requests arrival rate increases