SYSTEMATIC WAY of PROCESSING and FETCHING DATA USING DATA MINING Dr.G.Komarasamy , N.Balaji , J.Gokulnath , R.Hariprasath
Total Page:16
File Type:pdf, Size:1020Kb
International Journal on Applicationsin Information and Communication Engineering Volume 3:Issue 1: January 2017, pp 24 - 30 www.aetsjournal.com ISSN (Online) : 2394 - 6237 ----------------------------------------------------------------------------------------------------------------------------- ------------------------- SYSTEMATIC WAY OF PROCESSING AND FETCHING DATA USING DATA MINING Dr.G.Komarasamy , N.Balaji , J.Gokulnath , R.Hariprasath Regression is predicting real value for a given data Abstract— Big Data consists of huge modules, difficult, instance. Clustering is the process of grouping similar growing data sets with numerous and independent sources items together into some clusters. Java has been around with the fast development of networking, storage of data, and since 1991, developed by a small team of Sun the data gathering capacity. Here we are using Apriori theorem that states the characteristics data and proposes a data Microsystems developers in a project originally called processing model from the data mining view for extracting the Green project. The intent of the project was to useful information from these large datasets or streams of data develop a platform-independent software technology that to look for relevant or pertinent information. Here we analyze would be used in the consumer electronics industry. The several challenges at the data, model, and system levels and language that the team created was originally called Oak. using apriori theorem for clustered storage which combines Around the time the First Person project was multiple arrays to increase their performance, capacity and floundering in consumer electronics, a new craze was reliability. Clustering techniques is used to partition the file uploaded by the admin as a set of entities into different groups gaining momentum in America; the craze was called so that it will be easy for the user to download even large files "Web surfing." The World Wide Web, a name applied to efficiently. the Internet's millions of linked HTML documents was suddenly becoming popular for use by the masses. Keywords -- Big Data, Networking, Apriori, Clustering. The reason for this was the introduction of a graphical Web browser called Mosaic, developed by ncSA. The I. INTRODUCTION browser simplified Web browsing by combining text and ata production rate has been increased dramatically graphics into a single interface to eliminate the need for D and we are able store much more data than before users to learn many confusing UNIX and DOS like purchase data, social media data, mobile phone data. commands. Navigating around the Web was much easier Businesses and customers need useful or actionable using Mosaic. knowledge and gain insight from raw data for various It has only been since 1994 that Oak technology has purposes. It’s not just searching data or databases. Data been applied to the Web. In 1994, two Sun developers mining helps us to extract new information and uncover created the first version of Hot Java, and then called hidden patterns out of the stored and streaming data. The Web Runner, which is a graphical browser for the Web process of discovering hidden patterns in large data sets. that exists today. The browser was coded entirely in the It utilizes methods at the intersection of artificial Oak language, by this time called Java. Soon after, the intelligence, machine learning, statistics, and database Java compiler was rewritten in the Java language from systems. Extracting or mining knowledge from large its original C code, thus proving that Java could be used amounts of data, or big data. Data-driven discovery and effectively as an application language. Sun introduced modeling of hidden patterns in big data. Extracting Java in May 1995 at the Sun World 95 convention. implicit, previously unknown, unexpected, and Web surfing has become an enormously popular potentially useful information/knowledge from data. practice among millions of computer users. Until Java, Classification is assign data into predefined classes. however, the content of information on the Internet has been a bland series of HTML documents. Web users are Dr.G.Komarasamy , Department of Computer Science and hungry for applications that are interactive, that users Engineering ,Bannari Amman Institute of Technology, Sathyamangalam, India can execute no matter what hardware or software N.Balaji , Department of Computer Science and Engineering , platform they are using, and that travel across Bannari Amman Institute of Technology, Sathyamangalam, India heterogeneous networks and do not spread viruses to J.Gokulnath , Department of Computer Science and Engineering , their computers. Java can create such applications. Bannari Amman Institute of Technology, Sathyamangalam, India R.Hariprasath , Department of Computer Science and Engineering Java Server Pages or JSP for short is Sun's solution for , Bannari Amman Institute of Technology, Sathyamangalam, India developing dynamic web sites. JSP provide excellent server side scripting support for creating database driven 24 International Journal on Applicationsin Information and Communication Engineering Volume 3:Issue 1: January 2017, pp 24 - 30 www.aetsjournal.com ISSN (Online) : 2394 - 6237 ----------------------------------------------------------------------------------------------------------------------------- ------------------------- web applications. JSP enable the developers to directly Web server that interacts with the servlets. The Web insert java code into jsp file, this makes the development container is responsible for managing the lifecycle of process very simple and its maintenance also becomes servlets, mapping a URL to a particular servlet and very easy. JSP pages are efficient, it loads into the web ensuring that the URL requester has the correct access servers memory on receiving the request very first time rights. and the subsequent calls are served within a very short A Servlet is an object that receives a request and period of time. generates a response based on that request. The basic In today's environment most web sites servers servlet package defines Java objects to represent servlet dynamic pages based on user request. Database is very requests and responses, as well as objects to reflect the convenient way to store the data of users and other servlet's configuration things. JDBC provide excellent database connectivity in package javax.servlet.http defines HTTP-specific heterogeneous database environment. Using JSP and subclasses of the generic servlet elements, including JDBC its very easy to develop database driven web session management objects that track multiple requests application. Java is known for its characteristic of "write and responses between the Web server and a client. once, run anywhere." JSP pages are platform Servlets may be packaged in a WAR file as a Web independent. Your port your .jsp pages to any platform. application. A JSP page services requests as a servlet. Thus, the Servlets can be generated automatically from Java life cycle and many of the capabilities of JSP pages (in Server Pages (JSP) by the JavaServer Pages compiler. particular the dynamic aspects) are determined by Java The difference between Servlets and JSP is that Servlets Servlet technology and much of the discussion in this typically embed HTML inside Java code, while JSPs chapter refers to functions. embed Java code in HTML. When a request is mapped to a JSP page, it is handled The direct usage of Servlets to generate HTML (as by a special servlet that first checks whether the JSP shown in the example below) is relatively rare page's servlet is older than the JSP page. If it is, it nowadays, the higher level MVC web framework in Java translates the JSP page into a servlet class and compiles EE (JSF) still explicitly uses the Servlet technology for the class. During development, one of the advantages of the low level request/response handling via the JSP pages over servlets is that the build process is FacesServlet. A somewhat older usage is to use servlets performed automatically. in conjunction with JSPs in a pattern called Model 2, A servlet is a Java programming language class used which is a flavor of the model-view-controller pattern. to extend the capabilities of servers that host applications Servlets belong in WEB-INF/classes. On this accessed via a request-response programming model. machine, the source is in Java source. Web-Inf/classes is Although servlets can respond to any type of request, the standard location for servlets and other Java classes. they are commonly used to extend the applications Resin automatically reloads and recompiles servlets, hosted by Web servers. Thus, it can be thought of as beans, and classes placed in web-inf/classes. You should a Java Applet that runs on a server instead of a browser. make some changes and add errors to become familiar A Servlet is a Java class in Java EE that conforms to with Resin's recompilation and the error reporting. the Java Servlet API, a protocol by which a Java class MySQL ships with many command line tools, from may respond to requests. They are not tied to a specific which the main interface is 'mysql' client.Third-parties client-server protocol, but are most often used with have also developed tools to manage, optimize, monitor the HTTP protocol. Therefore, the word "Servlet" is and backup a MySQL server, some listed below. All often used in the meaning of "HTTP Servlet". these tools work on *NIX type operating systems, and Thus, a software developer